First Quarto Presentation

Julia Idzikowska

Intro

Welcome to a Quarto sample presentation, my go-to template for all future decks. Inside, you’ll find a solid structure, styling tips, and placeholder examples to get started in no time.

Quarto

Quarto enables you to weave together content and executable code into a finished presentation. To learn more about Quarto presentations see https://quarto.org/docs/presentations/.

Thanks Quarto!

Important stuff

Absolute positions

Stack content

Watch out

This text will turn red

WOW!

Tabset

Here I present the aim of the study

Here I present the methods used to pursue the aim

And here I present the results

Slide x

dataset = read_csv("data/dataset.csv")
data = mcars
library(ggplot2)
mtcars %>%                               
  ggplot( aes(mpg, hp)) +   
  geom_point() 

Slide y

dataset = read_csv("data/dataset.csv")
data = mcars
library(ggplot2)
mtcars %>%                               
  ggplot( aes(mpg, hp, color = gear)) +   
  geom_point() + 
  geom_smooth(method = "lm")

Slide z

Bullets

When you click the Render button a document will be generated that includes:

  • Content authored with markdown
  • Output from executable code

Code

When you click the Render button a presentation will be generated that includes both content and the output of embedded code. You can embed code like this:

[1] 2

Other section

A new slide